crypto/tls.Config.autoSessionTicketKeys (field)
12 uses
crypto/tls (current package)
common.go#L885: autoSessionTicketKeys []ticketKey
common.go#L985: autoSessionTicketKeys: c.autoSessionTicketKeys,
common.go#L1060: if len(c.autoSessionTicketKeys) > 0 && c.time().Sub(c.autoSessionTicketKeys[0].created) < ticketKeyRotation {
common.go#L1061: return c.autoSessionTicketKeys
common.go#L1070: if len(c.autoSessionTicketKeys) == 0 || c.time().Sub(c.autoSessionTicketKeys[0].created) >= ticketKeyRotation {
common.go#L1075: valid := make([]ticketKey, 0, len(c.autoSessionTicketKeys)+1)
common.go#L1077: for _, k := range c.autoSessionTicketKeys {
common.go#L1083: c.autoSessionTicketKeys = valid
common.go#L1085: return c.autoSessionTicketKeys
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)